From 2e04899ee59a17b41f3b1accd4a874242d4a03d3 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 7 Jun 2014 14:08:46 -0400 Subject: [PATCH] GtkOrientable use G_PARAM_EXPLICIT_NOTIFY This one is a little tricky, since we override this property in many places, and you cannot add flags when overriding. So, all places where this is overridden will have to make sure to notify explicitly. --- gtk/gtkorientable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkorientable.c b/gtk/gtkorientable.c index 6917c4ed2c..0607211d55 100644 --- a/gtk/gtkorientable.c +++ b/gtk/gtkorientable.c @@ -62,7 +62,7 @@ gtk_orientable_default_init (GtkOrientableInterface *iface) P_("The orientation of the orientable"), GTK_TYPE_ORIENTATION, GTK_ORIENTATION_HORIZONTAL, - GTK_PARAM_READWRITE)); + GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY)); } /** -- 2.30.2